home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000165_news@columbia.edu_Wed Aug 16 15:00:45 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19853
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Aug 1995 11:00:51 -0400
  3. Received: by apakabar.cc.columbia.edu id AA22933
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Aug 1995 11:00:49 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help: how to get PARAGRAPH character on German keyboard ????
  9. Date: 16 Aug 1995 15:00:45 GMT
  10. Organization: Columbia University
  11. Lines: 45
  12. Message-Id: <40t16t$mci@apakabar.cc.columbia.edu>
  13. References: <409rmi$pmm@rzcom.stadt-mh.de>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Keywords: emulation, mapping, paragraph
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. In article <409rmi$pmm@rzcom.stadt-mh.de>,
  19. h.-j. rosenberger <rosenb@stadt-mh.de> wrote:
  20.  
  21. (Dear readers: Be sure to use 8-bit display and Latin-1 character set
  22.  when reading this message or it will make no sense...)
  23.  
  24. : We are using MSKERMIT 3.14 with the LATIN1-char-set. Everything work
  25. : o.k., except the mapping of the '-sign! Kermit will send the '-sign to
  26. : the host as \21, which is ok, because this is the place, where you can
  27. : find it in the CODE-PAGE 437 we are using.  But instead, it should be
  28. : mapped to \167, its place in Latin1 !
  29. First, we should all be aware of the confusion surrounding the name
  30. "paragraph sign".  Americans think it is the glyph that looks like a
  31. backwards uppercase "P" with two vertical strokes (6), whereas Europeans
  32. give this name to the one that looks a bit like an uppercase "S" with a
  33. circle in the middle (').  The real name for the "P" sign (6) is Pilcrow
  34. sign.  In this text, "paragraph sign" refers to the true Paragraph sign
  35. (').
  36.  
  37. PC Code page 437 does not contain a Paragraph sign OR a Pilcrow sign.
  38. If you want to use Latin-1 as your terminal character set, then you
  39. should also set your PC code page to 850, because CP850 contains all the
  40. graphics characacters of Latin-1 (but, of course, using different codes):
  41.  
  42.   CHCP 850
  43.   SET TERMINAL CODE-PAGE CP850
  44.   SET TERMINAL CHARACTER-SET LATIN1 
  45.   SET TERMINAL BYTESIZE 8
  46.   SET PARITY NONE
  47.  
  48. Then you can view and enter all Latin-1 characters.  Below you can see how
  49. I used MS-DOS Kermit 3.14 to enter them into this message:
  50.  
  51.               Par  Pil
  52.   Compose      '    6    ; Using Compose Key: Alt-c SO and Alt-c PP
  53.   Alt-nnn      '    6    ; Using Alt-nnn method: Alt-245 and Alt-244
  54.  
  55. Neither of these methods is necessary if you have such keys directly on
  56. your national keyboard.
  57.  
  58. The Alt-nnn method is documented in "Using MS-DOS Kermit".  The Compose
  59. key is documented in the KERMIT.UPD file.
  60.  
  61. - Frank